home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
misc
/
emu
/
ATUtilities.lha
/
ATUtilities
/
i4.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-09-26
|
277 b
|
20 lines
#include <exec/types.h>
APTR JanusBase;
VOID main()
{
REGISTER UWORD i;
JanusBase=OpenLibrary("janus.library",0L);
if(JanusBase!=NULL)
{
for(i=16;i<32;i++)
SendJanusInt(i);
SendJanusInt(4);
CloseLibrary(JanusBase);
}
else puts("No Janus-Library!");
}